home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / zipmgr13.zip / SETUP.BAT < prev    next >
DOS Batch File  |  1993-01-17  |  944b  |  28 lines

  1. ECHO OFF
  2. CLS
  3. ECHO ZIPMGR V1 - Initial SETUP batch file.
  4. ECHO Provided by Marshall H. Goodman Software Ltd.
  5. ECHO '
  6. ECHO Batch File syntax: SETUP driveletter
  7. ECHO '           where: 'driveletter' is the drive where the \WINDOWS
  8. ECHO '                  sub-directory is located.
  9. ECHO '   'driveletter' format: C:
  10. ECHO '
  11. ECHO This batch file will copy SETUPKIT.DLL and VBRUN100.DLL to your
  12. ECHO '%1'\WINDOWS sub-directory.
  13. ECHO '
  14. IF "%1" == "" GOTO NODRIVE
  15. IF NOT EXIST %1\WINDOWS\*.* GOTO PATHNO
  16. IF NOT EXIST %1\WINDOWS\SETUPKIT.DLL COPY SETUPKIT.DLL %1\WINDOWS
  17. IF NOT EXIST %1\WINDOWS\VBRUN100.DLL COPY VBRUN100.DLL %1\WINDOWS
  18. ERASE SETUPKIT.DLL
  19. ERASE VBRUN100.DLL
  20. ECHO Copying complete.  You can now enter Windows and run ZMSETUP.EXE.
  21. GOTO FINAL
  22. :PATHNO
  23. ECHO The sub-directory %1\WINDOWS does not on this drive.  SETUP Cancelled.
  24. GOTO FINAL
  25. :NODRIVE
  26. ECHO You have not specified a driveletter.  SETUP cancelled.
  27. :FINAL
  28.